golang.org/x/net/http2.clientStream.bufPipe (field)

10 uses

	golang.org/x/net/http2 (current package)
		transport.go#L360: 	bufPipe       pipe // buffered pipe with the flow-controlled response payload
		transport.go#L1551: 		cs.bufPipe.CloseWithError(err) // no-op if already closed
		transport.go#L1556: 		cs.bufPipe.CloseWithError(errRequestCanceled)
		transport.go#L2452: 	cs.bufPipe.setBuffer(&dataBuffer{expected: res.ContentLength})
		transport.go#L2507: 	n, err = b.cs.bufPipe.Read(p)
		transport.go#L2558: 	unread := cs.bufPipe.Len()
		transport.go#L2576: 	cs.bufPipe.BreakWithError(errClosedResponseBody)
		transport.go#L2669: 			if _, err = cs.bufPipe.Write(data); err != nil {
		transport.go#L2719: 		cs.bufPipe.closeWithErrorAndCode(io.EOF, cs.copyTrailers)
		transport.go#L2885: 	cs.bufPipe.CloseWithError(serr)